home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / Palettes / MailComposer / MailComposerPalette.m < prev    next >
Text File  |  1995-06-12  |  910b  |  32 lines

  1. //---------------------------------------------------------------------------------------------------------
  2. //
  3. //    MailComposerPalette
  4. //
  5. //    Inherits From:        IBPalette
  6. //
  7. //    Declared In:        MailComposerPalette.h
  8. //
  9. //    Disclaimer
  10. //
  11. //        You may freely copy, distribute and reuse this software and its
  12. //        associated documentation. I disclaim any warranty of any kind, 
  13. //        expressed or implied, as to its fitness for any particular use.
  14. //
  15. //---------------------------------------------------------------------------------------------------------
  16. #import "MailComposerPalette.h"
  17.  
  18.  
  19. @implementation  MailComposerPalette
  20.  
  21. - finishInstantiate
  22. {
  23.     //  This method associates the object instance with some view that may be dragged in IB.
  24.     //  Note: Must use IBObjectPboardType for Object subclass palettes...
  25.     
  26.         [self associateObject: objectData type: IBObjectPboardType with: objectView];
  27.         return self;
  28. }
  29.  
  30.  
  31. @end
  32.